home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / winlib3.zip / CURSOR.H < prev    next >
Text File  |  1991-01-14  |  486b  |  21 lines

  1. #ifndef CURSOR_DEF
  2. #define CURSOR_DEF
  3. #include <proto.h>
  4. #define CREATE_CURSOR_SHAPE(beginline,endline)  ((beginline)<<4+(endline))
  5. #define THIN          0x0B0C
  6. #define BLOCK         0x0007
  7. #define INVISIBLE     0x1F00
  8.  
  9. #if __cplusplus
  10.   extern "C" {
  11. #endif
  12. void GetCursorShape P((unsigned *, unsigned *));
  13. void ChangeCursor P((unsigned, unsigned));
  14. void BlockCursor P((void));
  15. void ThinCursor P((void));
  16. void HideCursor P((void));
  17. #if _cplusplus
  18.   }
  19. #endif
  20. #endif
  21.